body {
    font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #E7F1DA; 
	overflow-x: hidden;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar Styles */
.navbar {
    overflow: visible !important;
    background-color: #F2B5A8;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0; /* Smaller padding for navbar */
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar a {
    color: #781721; 
    font-size: 17px; /* Smaller font size */
}

.navbar a:hover {
    color: #FF6B6B;
}

.logo {
    display: flex;
    align-items: center; 
    padding-left: 30px; 
}

.logo a {
    display: flex; 
    align-items: center; 
    text-decoration: none; 
}

.logo img {
    width: 80px; /* Smaller width for navbar */
    height: 50px; /* Smaller height for navbar */
    margin-right: 10px; 
    transition: transform 0.3s; /* Add transition for smooth scaling */
}

/* Scale up the logo on hover */
.logo a:hover img {
    transform: scale(1.15);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    display: inline-block;
}









/* Cart Navbar Button */
.cart-navbar {
    display: inline-block;
    padding: 10px 16px;
    position: relative;
    text-decoration: none;
}

/* Cart Icon Styling */
.cart-icon {
    width: 24px; /* Adjust width */
    height: 24px; /* Adjust height */
    display: inline-block;
	padding: 0 5px;
    vertical-align: middle; /* Align icon with text */
    transition: transform 0.2s ease; /* Add hover effect */
}

/* Hover Effect: Change to another image */
.cart-navbar:hover .cart-icon {
    content: url('CART ICON hover.png');
}


/* Disable body scroll */
body.no-scroll {
    overflow: hidden; /* Prevent scrolling */
}

/* Default hidden state */
#cart-frame,
#overlay {
    display: none; /* Hidden by default */
}

/* Overlay styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Overlay over other elements */
    opacity: 0; /* Hidden */
    visibility: hidden; /* Hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade */
}

/* Show overlay when active */
#overlay.active {
    opacity: 1; /* Fully visible */
    visibility: visible; /* Fully visible */
    display: block; /* Ensure it appears */
}

/* Cart frame styling */
#cart-frame {
    position: fixed;
    right: -100%; /* Initially off-screen */
    top: 0;
    width: 26%;
    height: 100%;
    background-color: #fff;
    z-index: 1000; /* Ensure it's above the overlay */
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: right 0.3s ease; /* Smooth transition for sliding */
}

/* Show cart frame when active */
#cart-frame.active {
    right: 0; /* Slide into view */
}

/* Close Button */
#close-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    cursor: pointer;
    color: #333;
}

#close-cart:hover {
    color: #781721; /* Change color on hover */
}

/* Footer box styling */
#cart-footer-box {
    position: sticky; /* Stick to the bottom */
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

/* Total section styling */
#cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

/* Checkout button styling */
#checkout-button {
    width: 80%;
    padding: 12px;
    background-color: #d9534f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

#checkout-button:hover {
    background-color: #c9302c;
}

/* Cart Content */
#cart-title {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
}

/* Box to hold cart items */
#cart-item-box {
    flex-grow: 1; /* Fill available space above footer */
    overflow-y: auto; /* Enable scrolling for long lists */
    padding: 10px 20px;
    box-sizing: border-box;
}

/* Empty message styling */
#cart-empty-message {
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 20px;
}

/* Individual cart items */
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
	margin-top: -10%;
}

.cart-item:last-child {
    border-bottom: none; /* No border for last item */
}

.item-name {
    flex-grow: 1; /* Name stretches */
}

.item-price {
    font-weight: bold;
    color: #666;
}

/* Empty message styling */
#cart-empty-message {
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 20px;
}

#cart-item-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.cart-item {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.cart-item-left {
    width: 100px; /* Set image width */
    height: 100px;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-right {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: bold;
}

.cart-item-price {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.cart-item-total-price {
    margin-top: 3%; /* Space between the original price and total price */
    font-weight: bold;
    color: #333; /* You can adjust the color as needed */
	margin-bottom: -.5%;
}

.custom-quantity-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between quantity buttons and bin icon */
    padding-top: 3%;
}

.custom-quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #C2C2C2;
    border-radius: 0; /* Set to 0 for sharp corners */
    font-weight: bold;
    width: 100px; /* Fixed width for the quantity selector */
}

.custom-quantity-button {
    background-color: #C2C2C2;
    color: #144a3e;
    border: none;
    padding: 10px 0; /* Consistent padding */
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 0; /* Set to 0 for sharp corners */
    width: 40px; /* Fixed width for buttons */
}

.custom-quantity-button:hover {
    background-color: #A2A2A2;
}

.custom-quantity-selector span {
    font-size: 1.2em;
    margin: 0 10px;
    width: 40px; /* Fixed width for the quantity display */
    text-align: center; /* Center the text */
}


.remove-item {
    background: none;
    border: none;
    cursor: pointer;
}

.remove-item ion-icon{
    width: 20px;
    height: 20px;
}


.navbar a:hover {
    background-color: #BF93AE;
    color: #FFFFFF;
}

.logo a:hover {
    background-color: transparent; 
    color: #781721; 
}

.dropdown {
    position: relative; /* Ensure the dropdown menu is positioned relative to the parent */
    display: inline-block;
}

/* Dropdown button hover effect */
.dropdown:hover .dropbtn {
    background-color: #BF93AE; /* Background color on hover */
	color: white;
    transform: scale(1.05); /* Slightly expand the button */
}

.dropdown-content {
    display: none; /* Hide the dropdown menu by default */
    position: absolute; /* Position it relative to the dropdown container */
    background-color: #F2B5A8; /* Background color for dropdown menu */
    min-width: 100%; /* Set minimum width for the dropdown menu */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Add a shadow for better visibility */
    z-index: 1000; /* Ensure the dropdown menu is on top of other content */
    
    top: 100%; /* Position below the button */
    left: 0; /* Align with the left edge of the button */
}



/* Style for dropdown list items */
.dropdown-content li {
    list-style: none; /* Remove default list style */
}

.dropdown-content a {
    color: #781721; /* Color of the dropdown links */
    padding: 8px 16px; /* Padding for dropdown links */
    text-decoration: none; /* Remove underline from links */
    display: block; /* Make the links block level to fill the menu width */
    text-align: left; /* Align text to the left */
}

.dropdown-content a:hover {
    background-color: #C6B1BE; /* Background color on hover */
    color: white; /* Color of text on hover */
	transform: scale(1.10); /* Slightly expand the button */
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Contact pop up box */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal.fade-in {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #F3D1CA;
    margin: 5% auto; /* Centered vertically and horizontally */
    padding: 20px;
    border: 35px solid transparent; /* Thicker border */
    width: 100%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border-image: url('pattern.jpeg') 30 round; /* Thicker border image */
}

.close {
    color: #781721;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #1D6357;
    text-decoration: none;
    cursor: pointer;
}

.contact-page {
    text-align: center;
}

.contact-header {
    margin-bottom: 20px;
    color: #781721;
}

.contact-header h2 {
    font-size: 36px; /* Larger font size for "Contact Us" */
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    flex: 1 1 calc(50% - 20px); /* Adjusting width for side-by-side layout */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; /* Added gap between form groups */
}

.contact-form .form-group.full-width {
    flex: 1 1 100%;
}

.contact-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #781721;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #BF93AE; /* Line underneath input fields */
    border-radius: 0px;
    background-color: transparent;
}

.contact-form .form-group:first-child {
    margin-bottom: 30px; /* Increased gap between first name and last name */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #781721; /* Change line color on focus */
}

.contact-form button {
  position: relative;
  overflow: hidden;
  color: #BF93AE;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 15px; /* Adjust padding to ensure text is vertically centered */
  text-align: center; /* Center the text horizontally */
  text-decoration: none;
  cursor: pointer;
  background: #781721;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 80%;
  border: none;
  margin: 5px auto 0 auto;
	font-family: "Quicksand Medium";
}

.contact-form button span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
  display: block;
  text-align: center; /* Center the text inside the span */
  line-height: normal; /* Ensure proper line-height */
}

.contact-form button span:last-child {

  color: #781721;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the text horizontally and vertically */
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  height: 14px;
  line-height: 13px;
}

.contact-form button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #BF93AE;
  transform-origin: bottom left; /* Start the transformation from the bottom left */
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: scaleY(0); /* Start with no height (collapsed) */
  z-index: 0;
}

.contact-form button:hover:after {
  transform: scaleY(1); /* Fully expand the background vertically */
}

.contact-form button:hover span:last-child {
  transform: translate(-50%, -50%); /* Center text horizontally and vertically when hovered */
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}








.article-page {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

.article-header .article-date {
    font-size: 14px;
    color: #666;
}

.article-content {
    display: flex;
    align-items: flex-start;
}

.image-container {
    flex: 1;
    max-width: 60%; /* Increased the width to make the image larger */
    margin-right: 20px; /* Adds space between image and content */
    margin-left: -20px; /* Negative margin to touch the left margin of the webpage */
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-container {
    flex: 1;
    padding-left: 20px;
    overflow: hidden; /* Hide scrollbar */
    height: 100%; /* Ensure it fits the image height */
    max-height: 100%;
}

.content-text {
    max-height: calc(100vh - 80px); /* Subtract header height */
    overflow-y: auto; /* Enable vertical scroll */
    padding-right: 20px; /* Adds padding for the scrollbar */
    transition: max-height 0.3s ease; /* Smooth transition for max-height */
}

/* Ensuring content-text only scrolls when hovered */
.content-container:hover .content-text {
    overflow-y: auto; /* Enable scrolling */
}

/* Ensuring entire page scrolls when image is hovered */
.image-container:hover ~ .content-container .content-text {
    overflow-y: hidden; /* Disable scrolling on content */
}

/* Navigation container styles */
.navigation-container {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    align-items: center;
    margin-top: 20px;
    padding: 10px 0;
}

/* Common styles for navigation buttons */
.nav-button {
    background-color: #BF93AE; /* Button background color */
    color: white; /* Button text color */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 0 30px; /* Space between buttons */
    width: 120px; /* Fixed width for all buttons */
    text-align: center; /* Center text inside the button */
	  transition: 0.5s;
  background-size: 200% auto;
  display: block; /* Ensures the button takes up full width available */
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #bf93ae 0%, #f5bfaf 51%, #bf93ae 100%);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}




/* Change button color on hover */
.nav-button:hover {
      background-position: right center;
  color: #fff;
  text-decoration: none;
}




#scrollToTopBtn {
  background-color: #287669;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: #56EED5;
  cursor: pointer;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  align-items: center;
  font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
  
  float: right; /* Align to the right */
  margin-bottom: 20px; /* Add space from the bottom */
  margin-right: 20px; /* Add space from the right */
	margin-top: 80px;
}

#scrollToTopBtn:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05);
}




.footer {
    position: relative;
    width: 100%;
    background: #781721;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
		margin-top: 250px;
		text-align: center;
}

footer .social_icon, 
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
    list-style: none;
}

footer .social_icon {
	margin-left: -2%;
	margin-top: 10px;
}
    
footer .social_icon a {
    font-size: 2em;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
    
footer .social_icon a:hover {
    transform: translateY(-10px);
}
    
footer .menu a {
    font-size: 1.2em;
    color: #FFFFFF;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}
    
footer .menu a:hover {
    opacity: 1;
}


.subscribe {
    color: white;
    margin-bottom: 20px; /* Space between subscribe section and menu */
	margin-left: -2%;
}

.subscribe p {
    font-size: 20px;
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    justify-content: center; /* Center the form */
    align-items: center;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid white; /* White border */
    background-color: #781721; /* Inside color */
    color: white;
    border-radius: 0; /* Sharp corners */
    outline: none;
    flex: 1;
}

.subscribe-form input[type="email"]:hover {
    background-color: rgba(255, 255, 255, 0.5); /* White with 50% opacity on hover */
    color: #781721;
}

.subscribe-form button {
    padding: 10px;
    font-size: 14px;
    background-color: white; /* Button background color */
    color: #781721;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
	border: 1px solid white;
}

.subscribe-form button:hover {
    background-color: #781721; /* Button hover background color */
    color: white; /* Button hover text color */
}

    
footer p {
    color: #FFFFFF;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
	margin-left: -2%;
}
    
footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("wave red.png");
    background-size: 1000px 100px;
	z-index: -1;
}
    
footer .wave#wave1 {
    z-index: -1;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
    
footer .wave#wave2 {
    z-index: -2;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}
    
footer .wave#wave3 {
    z-index: -3;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}
    
footer .wave#wave4 {
    z-index: -4;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}
    
@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
}
    
@keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
}


/* FLOATING BUTTON START */
.floating-sticker {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 130px;
            height: 130px;
            background-color: #bf93ae;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			cursor: pointer;
			z-index: 1;
            opacity: 0;  /* Initially hidden */
   			visibility: hidden; /* Prevents interaction */
    		transition: opacity 0.5s ease-in-out, transform 0.5s ease-out, visibility 0.5s;
}

.floating-sticker.show {
    opacity: 1;  
    visibility: visible;
}
			

        .floating-sticker:hover {
            transform: scale(1.1);
        }

        .floating-sticker img {
            width: 31%;
            height: 62%;
        }

.circle-text {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-origin: center;
            animation: rotateText 10s linear infinite;
			font-size: 8px; /* Adjust text size */
            font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
            fill: #9b2531; /* Text color */
			font-weight: bold;
            letter-spacing: 1px; /* Add space between letters */
        }

        @keyframes rotateText {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
/* FLOATING BUTTON END */

      

